applicationswindow: Make show-menubar FALSE by default
authorMatthias Clasen <mclasen@redhat.com>
Mon, 11 May 2020 00:15:31 +0000 (20:15 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 11 May 2020 12:15:56 +0000 (08:15 -0400)
The fallback to the menubar is not a good sight,
we should not do that by default.

gtk/gtkapplicationwindow.c

index 4afc2910a6b87b0199063b3cb8011a7ee51566f1..76172684b2c26d9006348ddbbe039e8c16cdc147 100644 (file)
@@ -797,7 +797,7 @@ gtk_application_window_class_init (GtkApplicationWindowClass *class)
                           P_("Show a menubar"),
                           P_("TRUE if the window should show a "
                              "menubar at the top of the window"),
-                          TRUE, G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
+                          FALSE, G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
   g_object_class_install_properties (object_class, N_PROPS, gtk_application_window_properties);
 }